GXEqualStyle
You can use theGXEqualStyle
function to determine if two style objects are equal.
boolean GXEqualStyle(gxStyle one, gxStyle two);
one
- A reference to one of the style objects to test for equality.
two
- A reference to the other style object to test for equality.
- function result
true
if the style specified by theone
parameter is equal to the style specified by thetwo
parameter;false
otherwise.DESCRIPTION
TheGXEqualStyle
function returns as its function result a Boolean value indicating whether the two style objects are equal.For two style objects to be equal, they must have identical properties, except that their common object properties (owner count and tag list) need not be identical.
ERRORS, WARNINGS, AND NOTICES
Errors out_of_memory style_is_nil SEE ALSO
To make a copy of a style object that is equal by the criteria of this function, use theGXCopyToStyle
function, described in the previous section.